home *** CD-ROM | disk | FTP | other *** search
Text File | 1997-05-19 | 475 b | 19 lines | [TEXT/CWIE] |
- // =================================================================================
- // GWorldSaver.h 1997 BB's Team inc. All rights reserved
- // =================================================================================
-
- class GWorldSaver {
- public:
- GWorldSaver (GWorldPtr gw) {
- ::GetGWorld (&savePort, &saveDevice);
- ::SetGWorld (gw, nil);
- }
- ~GWorldSaver () {
- ::SetGWorld (savePort, saveDevice);
- }
-
- private:
- CGrafPtr savePort;
- GDHandle saveDevice;
- };
-